public function mouseLeaveHandler(param1:Event) : void
{
mouseUpHandler(lastMouseEvent);
}
private function _dispatchDragEvent(param1:DisplayObject, param2:DragEvent) : void
{
var _loc3_:InterManagerRequest = null;
var _loc4_:InterDragManagerEvent = null;
if(isSameOrChildApplicationDomain(param1))
{
param1.dispatchEvent(param2);
}
else
{
_loc3_ = new InterManagerRequest(InterManagerRequest.INIT_MANAGER_REQUEST);
_loc3_.name = "mx.managers::IDragManager";
sandboxRoot.dispatchEvent(_loc3_);
_loc4_ = new InterDragManagerEvent(InterDragManagerEvent.DISPATCH_DRAG_EVENT,false,false,param2.localX,param2.localY,param2.relatedObject,param2.ctrlKey,param2.altKey,param2.shiftKey,param2.buttonDown,param2.delta,param1,param2.type,param2.dragInitiator,param2.dragSource,param2.action,param2.draggedItem);
sandboxRoot.dispatchEvent(_loc4_);
}
}
override protected function keyDownHandler(param1:KeyboardEvent) : void
{
checkKeyEvent(param1);
}
public function stage_mouseMoveHandler(param1:MouseEvent) : void